home *** CD-ROM | disk | FTP | other *** search
- {$C MOVEABLE,DEMANDLOAD,DISCARDABLE}
-
- {*******************************************************}
- { }
- { For PICS OCX version 1.5 }
- { API Interface Unit }
- { }
- { Copyright (c) 1996 ProtoView Development Co. }
- { All rights reserved }
- {*******************************************************}
-
- unit PICSOCX;
-
- interface
-
- const
- { Defines of constants for Add Method - TreeView }
- pvtPositionInOrder = 0;
- pvtPositionBefore = 1;
- pvtPositionAfter = 2;
-
- { Defines of constants for Get Method - TreeView }
- pvtGetNextSibling = 0;
- pvtGetPrevSibling = 1;
- pvtGetNextVisible = 2;
- pvtGetPrevVisible = 3;
- pvtGetNextSelected = 4;
- pvtGetPrevSelected = 5;
- pvtGetParent = 6;
- pvtGetNext = 7;
- pvtGetPrevious = 8;
- pvtGetChild = 9;
-
- { Defines of constants for Open Method - TreeView }
- pvtEnsureVisible = 0;
- pvtNode = 1;
- pvtChildren = 2;
- pvtAllChildren = 3;
- pvtUnselect = 4;
- pvtAnchor = 5;
- pvtCaret = 6;
-
- { Defines of constants for Standard Pictures - TreeView }
- pvtNone = -1;
- pvtpicFolders = 0;
- pvtpicBoxes1 = 1;
- pvtpicDocument = 2;
- pvtpicHardDisk = 3;
- pvtpicProgram = 4;
- pvtpicSystemFile = 5;
- pvtpicBoxes2 = 6;
- pvtpicBoxes3 = 7;
- pvtpicASCIIFile = 8;
- pvtpicHelpFile = 9;
-
- { Defines of constants for Find Method - TreeView }
- pvtFindNext = 0;
- pvtFindNextExact = 1;
- pvtFindPrevious = 2;
- pvtFindPreviousExact = 3;
- pvtFindNextSibling = 4;
- pvtFindNextSiblingExact = 5;
- pvtFindPreviousSibling = 6;
- pvtFindPreviousSiblingExact = 7;
- pvtFindNextVisible = 8;
- pvtFindNextVisibleExact = 9;
- pvtFindPreviousVisible = 10;
- pvtFindPreviousVisibleExact = 11;
-
-
- { Defines of constant for DateFormat Property - DateEdit }
- fmtMDY = 0;
- fmtDMY = 1;
- fmtYMD = 2;
-
- { Common defines for DateEdit & Numeric Edit Control }
- fmtNORMAL = 12;
- fmtLED = 13;
- fmtODOMETER = 14;
-
- implementation
-
- end.
-
-